コード例 #1
0
 def test_directory_with_subdirectories(self):
     os.mkdir(self.src("src_subdir"))
     print >> open(self.src("src_subdir", "subfile"), "w"), "subdir line"
     os.mkdir(self.src("both_subdir"))
     os.mkdir(self.dest("both_subdir"))
     print >> open(self.src("both_subdir", "subfile"), "w"), "src line"
     print >> open(self.dest("both_subdir", "subfile"), "w"), "dest line"
     base_utils.merge_trees(*self.paths())
     self.assertFileContents("subdir line\n", "src_subdir", "subfile")
     self.assertFileContents("dest line\nsrc line\n", "both_subdir",
                             "subfile")
コード例 #2
0
 def test_directory_with_mix_of_files(self):
     print >> open(self.dest("in_dest"), "w"), "dest line"
     print >> open(self.src("in_src"), "w"), "src line"
     base_utils.merge_trees(*self.paths())
     self.assertFileContents("dest line\n", "in_dest")
     self.assertFileContents("src line\n", "in_src")
コード例 #3
0
 def test_directory_with_files_in_both(self):
     print >> open(self.dest("in_both"), "w"), "line 1"
     print >> open(self.src("in_both"), "w"), "line 3"
     base_utils.merge_trees(*self.paths())
     self.assertFileContents("line 1\nline 3\n", "in_both")
コード例 #4
0
 def test_file_at_both(self):
     print >> open(self.dest("in_both"), "w"), "line 1"
     print >> open(self.src("in_both"), "w"), "line 2"
     base_utils.merge_trees(*self.paths("in_both"))
     self.assertFileContents("line 1\nline 2\n", "in_both")
コード例 #5
0
 def test_file_only_at_dest(self):
     print >> open(self.dest("dest_only"), "w"), "line 1"
     base_utils.merge_trees(*self.paths("dest_only"))
     self.assertEqual(False, os.path.exists(self.src("dest_only")))
     self.assertFileContents("line 1\n", "dest_only")
コード例 #6
0
 def test_file_only_at_src(self):
     print >> open(self.src("src_only"), "w"), "line 1"
     base_utils.merge_trees(*self.paths("src_only"))
     self.assertFileEqual("src_only")
コード例 #7
0
 def test_both_dont_exist(self):
     base_utils.merge_trees(*self.paths("empty"))