コード例 #1
0
 def test_behavior_readonly_public_attributes(self):
     event = DirMovedEvent(path_1, path_2)
     assert_readonly_public_attributes(event)
コード例 #2
0
 def test_behavior_readonly_public_attributes(self):
     event = FileModifiedEvent(path_1)
     assert_readonly_public_attributes(event)
コード例 #3
0
 def test_behavior_readonly_public_attributes(self):
     event = DirDeletedEvent(path_1)
     assert_readonly_public_attributes(event)
コード例 #4
0
 def test_behavior_readonly_public_attributes(self):
     event = FileSystemEvent(EVENT_TYPE_MODIFIED, path_1, True)
     assert_readonly_public_attributes(event)
コード例 #5
0
 def test_behavior_readonly_public_attributes(self):
     event = FileSystemMovedEvent(path_2, path_1, True)
     assert_readonly_public_attributes(event)
コード例 #6
0
 def test_behavior_readonly_public_attributes(self):
     event = DirMovedEvent(path_1, path_2)
     assert_readonly_public_attributes(event)
コード例 #7
0
 def test_behavior_readonly_public_attributes(self):
     event = DirDeletedEvent(path_1)
     assert_readonly_public_attributes(event)
コード例 #8
0
 def test_behavior_readonly_public_attributes(self):
     event = FileModifiedEvent(path_1)
     assert_readonly_public_attributes(event)
コード例 #9
0
 def test_behavior_readonly_public_attributes(self):
     event = FileSystemMovedEvent(path_2, path_1, True)
     assert_readonly_public_attributes(event)
コード例 #10
0
 def test_behavior_readonly_public_attributes(self):
     event = FileSystemEvent(EVENT_TYPE_MODIFIED, path_1, True)
     assert_readonly_public_attributes(event)