示例#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)
 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)