Example #1
0
 def test_behavior_readonly_public_attributes(self):
     event = DirMovedEvent(path_1, path_2)
     assert_readonly_public_attributes(event)
Example #2
0
 def test_behavior_readonly_public_attributes(self):
     event = FileModifiedEvent(path_1)
     assert_readonly_public_attributes(event)
Example #3
0
 def test_behavior_readonly_public_attributes(self):
     event = DirDeletedEvent(path_1)
     assert_readonly_public_attributes(event)
Example #4
0
 def test_behavior_readonly_public_attributes(self):
     event = FileSystemEvent(EVENT_TYPE_MODIFIED, path_1, True)
     assert_readonly_public_attributes(event)
Example #5
0
 def test_behavior_readonly_public_attributes(self):
     event = FileSystemMovedEvent(path_2, path_1, True)
     assert_readonly_public_attributes(event)
 def test_behavior_readonly_public_attributes(self):
     event = DirMovedEvent(path_1, path_2)
     assert_readonly_public_attributes(event)
 def test_behavior_readonly_public_attributes(self):
     event = DirDeletedEvent(path_1)
     assert_readonly_public_attributes(event)
 def test_behavior_readonly_public_attributes(self):
     event = FileModifiedEvent(path_1)
     assert_readonly_public_attributes(event)
 def test_behavior_readonly_public_attributes(self):
     event = FileSystemMovedEvent(path_2, path_1, True)
     assert_readonly_public_attributes(event)
 def test_behavior_readonly_public_attributes(self):
     event = FileSystemEvent(EVENT_TYPE_MODIFIED, path_1, True)
     assert_readonly_public_attributes(event)