Ejemplo n.º 1
0
def test_echarts_postion_with_one_element_set():
    test_sequence = set(['echarts'])
    result = ensure_echarts_is_in_the_front(test_sequence)
    eq_(result[0], 'echarts')
Ejemplo n.º 2
0
def test_echarts_postion_with_nothing():
    test_sequence = set()
    ensure_echarts_is_in_the_front(test_sequence)
Ejemplo n.º 3
0
def test_echarts_postion_in_dependency_list():
    test_sequence = set(['guangdong', 'shanghai', 'echarts'])
    result = ensure_echarts_is_in_the_front(test_sequence)
    eq_(result[0], 'echarts')