예제 #1
0
 def test_cp_file_recursive(self):
     "Recursive does nothing"
     f1 = self.tdir / 'one.txt'
     f2 = self.tdir + 'two.txt'
     f1 << 'Contents!'
     nix.cp(f1, f2, recursive=True)
     self.assertTrue(filecmp.cmp(f1, f2, False))
예제 #2
0
 def test_cp_file(self):
     "Copy self to dest"
     f1 = self.tdir / 'one.txt'
     f2 = self.tdir + 'two.txt'
     f1 << 'Contents!'
     nix.cp(f1, f2)
     self.assertTrue(filecmp.cmp(f1, f2, False))
예제 #3
0
파일: test_nix.py 프로젝트: davidmiller/ffs
 def test_cp_file_recursive(self):
     "Recursive does nothing"
     f1 = self.tdir / 'one.txt'
     f2 = self.tdir + 'two.txt'
     f1 << 'Contents!'
     nix.cp(f1, f2, recursive=True)
     self.assertTrue(filecmp.cmp(f1, f2, False))
예제 #4
0
파일: test_nix.py 프로젝트: davidmiller/ffs
 def test_cp_file(self):
     "Copy self to dest"
     f1 = self.tdir / 'one.txt'
     f2 = self.tdir + 'two.txt'
     f1 << 'Contents!'
     nix.cp(f1, f2)
     self.assertTrue(filecmp.cmp(f1, f2, False))
예제 #5
0
 def test_cp_dir_recursive(self):
     "Should copy the tree"
     d1 = self.tdir / 'this'
     d2 = self.tdir / 'that'
     d1.touch('one.txt', 'two.txt')
     self.tdir.mkdir('this')
     nix.cp(d1, d2, recursive=True)
     self.assertEqual([], filecmp.dircmp(d1, d2).diff_files)
예제 #6
0
파일: test_nix.py 프로젝트: davidmiller/ffs
 def test_cp_dir_recursive(self):
     "Should copy the tree"
     d1 = self.tdir / 'this'
     d2 = self.tdir / 'that'
     d1.touch('one.txt', 'two.txt')
     self.tdir.mkdir('this')
     nix.cp(d1, d2, recursive=True)
     self.assertEqual([], filecmp.dircmp(d1, d2).diff_files)
예제 #7
0
 def test_cp_target_exists(self):
     "Should raise"
     with self.assertRaises(exceptions.ExistsError):
         self.tdir.touch('whatever', 'whateverer')
         nix.cp(self.tdir + 'whatever', self.tdir + 'whateverer')
예제 #8
0
 def test_cp_nonexistant(self):
     "Should raise"
     with self.assertRaises(exceptions.DoesNotExistError):
         nix.cp(self.tdir + 'whatever', self.tdir + 'whateverer')
예제 #9
0
 def test_cp_dir(self):
     "Is a no-op"
     self.tdir.mkdir('this')
     p = self.tdir / 'that'
     nix.cp(self.tdir / 'this', p)
     self.assertFalse(p)
예제 #10
0
 def cp(self, resource, target, recursive=False):
     return nix.cp(resource, target, recursive=recursive)
예제 #11
0
파일: test_nix.py 프로젝트: davidmiller/ffs
 def test_cp_target_exists(self):
     "Should raise"
     with self.assertRaises(exceptions.ExistsError):
         self.tdir.touch('whatever', 'whateverer')
         nix.cp(self.tdir + 'whatever', self.tdir + 'whateverer')
예제 #12
0
파일: test_nix.py 프로젝트: davidmiller/ffs
 def test_cp_nonexistant(self):
     "Should raise"
     with self.assertRaises(exceptions.DoesNotExistError):
         nix.cp(self.tdir + 'whatever', self.tdir + 'whateverer')
예제 #13
0
파일: test_nix.py 프로젝트: davidmiller/ffs
 def test_cp_dir(self):
     "Is a no-op"
     self.tdir.mkdir('this')
     p = self.tdir / 'that'
     nix.cp(self.tdir / 'this', p)
     self.assertFalse(p)