Exemplo n.º 1
0
 def test_behavior_readonly_public_attributes(self):
     event = DirMovedEvent(path_1, path_2)
     assert_readonly_public_attributes(event)
Exemplo n.º 2
0
 def test_behavior_readonly_public_attributes(self):
     event = FileModifiedEvent(path_1)
     assert_readonly_public_attributes(event)
Exemplo n.º 3
0
 def test_behavior_readonly_public_attributes(self):
     event = DirDeletedEvent(path_1)
     assert_readonly_public_attributes(event)
Exemplo n.º 4
0
 def test_behavior_readonly_public_attributes(self):
     event = FileSystemEvent(EVENT_TYPE_MODIFIED, path_1, True)
     assert_readonly_public_attributes(event)
Exemplo n.º 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)
Exemplo n.º 10
0
 def test_behavior_readonly_public_attributes(self):
     event = FileSystemEvent(EVENT_TYPE_MODIFIED, path_1, True)
     assert_readonly_public_attributes(event)