コード例 #1
0
ファイル: test_utils.py プロジェクト: adamtheturtle/doc2dash
    def test_error(self, tmpdir):
        """
        If opening/reading fails with a differnt error, propate.
        """
        f = tmpdir.join("test")
        f.write(b"foo")
        f.chmod(0)

        with pytest.raises(PermissionError):
            has_file_with("/", str(f), "foo")
コード例 #2
0
ファイル: test_utils.py プロジェクト: hynek/doc2dash
    def test_error(self, tmpdir):
        """
        If opening/reading fails with a differnt error, propate.
        """
        f = tmpdir.join("test")
        f.write(b"foo")
        f.chmod(0)

        with pytest.raises(PermissionError):
            has_file_with("/", str(f), "foo")
コード例 #3
0
ファイル: test_utils.py プロジェクト: dunkelstern/doc2dash
    def test_exists(self, tmpdir, content, has):
        """
        If file contains content, return True, ealse False.
        """
        f = tmpdir.join("test")
        f.write(content)

        assert has is has_file_with("/", str(f), b"foo")
コード例 #4
0
ファイル: test_utils.py プロジェクト: adamtheturtle/doc2dash
    def test_exists(self, tmpdir, content, has):
        """
        If file contains content, return True, ealse False.
        """
        f = tmpdir.join("test")
        f.write(content)

        assert has is has_file_with("/", str(f), b"foo")
コード例 #5
0
ファイル: test_utils.py プロジェクト: dunkelstern/doc2dash
 def test_eent(self):
     """
     If file doesn't exist, return False.
     """
     assert False is has_file_with("foo", "bar", b"")
コード例 #6
0
ファイル: test_utils.py プロジェクト: adamtheturtle/doc2dash
 def test_eent(self):
     """
     If file doesn't exist, return False.
     """
     assert False is has_file_with("foo", "bar", b"")