def i_create_a_pub_info_string_using_chapter_no_subchapter(step):
    world.result = display_publication_info(world.chapter_no_subchapter_json)
    world.expected = '2021, Das Boot 14 18'
def i_create_a_pub_info_string_using_pub_type_and_end_page_and_volume(step):
    world.result = display_publication_info(world.pub_type_end_page_vol_json)
    world.expected = '2043, Incan Conquest of the World (13) 17-49'
def i_create_a_pub_info_string_from_json_without_series_title_but_with_larger_work_title(step):
    world.result = display_publication_info(world.json_larger_work)
    world.expected = '1492, A Larger Work'
def i_create_a_pub_info_string_for_a_pub_without_a_start_page(page):
    world.result = display_publication_info(world.pub_without_start_page)
    world.expected = '2043, Incan Conquest of the World'
def i_create_a_pub_info_string_without_a_chapter(step):
    world.result = display_publication_info(world.json_no_chapter)
    world.expected = '2021, Das Boot 14'
def i_create_a_pub_info_string_without_a_series_title(step):
    world.result = display_publication_info(world.json_no_series_title)
    world.expected = '1651, Article'
示例#7
0
def i_create_a_pub_info_string_using_the_pub_type_and_end_page_json(step):
    world.result = display_publication_info(world.pub_type_end_page_json)
    world.expected = '2043, Incan Conquest of the World 17-49'
def i_create_a_pub_info_string_with_chapter_and_subchapter(step):
    world.result = display_publication_info(world.chapter_subchapter_json)
    world.expected = '2021, Das Boot 14-18-4'
示例#9
0
def i_create_a_pub_info_string_using_chapter_no_subchapter(step):
    world.result = display_publication_info(world.chapter_no_subchapter_json)
    world.expected = '2021, Das Boot 14-18'
示例#10
0
def i_create_a_pub_info_string_for_a_pub_without_a_start_page(page):
    world.result = display_publication_info(world.pub_without_start_page)
    world.expected = '2043, Incan Conquest of the World'
示例#11
0
def i_create_a_pub_info_string_from_json_without_series_title_but_with_larger_work_title(
        step):
    world.result = display_publication_info(world.json_larger_work)
    world.expected = '1492, A Larger Work'
示例#12
0
def i_create_a_pub_info_string_without_a_series_title(step):
    world.result = display_publication_info(world.json_no_series_title)
    world.expected = '1651, Article'
示例#13
0
def i_create_a_pub_info_string_without_a_chapter(step):
    world.result = display_publication_info(world.json_no_chapter)
    world.expected = '2021, Das Boot 14'