expect(fileSystem.isExecutable(f("/writer/foo"))).andReturn(true);
fileSystem.makeDirsForFile(f("/writer/foo"));
fileSystem.copyFile(f("/codebase/foo"), f("/writer/foo"));
expectSvnCommand(ImmutableList.of("propdel", "svn:executable", "foo"), "/writer", "", cmd);
control.replay();
Codebase c = new Codebase(
f("/codebase"), "public",
e("public", ImmutableMap.<String, String>of()));
SvnWriter e = new SvnWriter(mockConfig, null, f("/writer"));
e.putFile("foo", c);
control.verify();