示例#1
0
 def test_relative_child_path(self):
     result = firebase_data.get_path_list('foo/bar')
     assert result == ['foo', 'bar']
示例#2
0
 def test_no_path(self):
     result = firebase_data.get_path_list('')
     assert result == []
示例#3
0
 def test_absolute_child_path(self):
     result = firebase_data.get_path_list('/foo/bar')
     assert result == ['foo', 'bar']