Lines 35-47
my $nb_of_cities = Koha::Cities->search->count;
Link Here
|
35 |
my $new_city_1 = Koha::City->new({ |
35 |
my $new_city_1 = Koha::City->new({ |
36 |
city_name => 'my_city_name_for_test_1', |
36 |
city_name => 'my_city_name_for_test_1', |
37 |
city_state => 'my_city_state_for_test_1', |
37 |
city_state => 'my_city_state_for_test_1', |
38 |
city_zipcode => 'my_city_zipcode_for_test_1', |
38 |
city_zipcode => 'my_zipcode_4_test_1', |
39 |
city_country => 'my_city_country_for_test_1', |
39 |
city_country => 'my_city_country_for_test_1', |
40 |
})->store; |
40 |
})->store; |
41 |
my $new_city_2 = Koha::City->new({ |
41 |
my $new_city_2 = Koha::City->new({ |
42 |
city_name => 'my_city_name_for_test_2', |
42 |
city_name => 'my_city_name_for_test_2', |
43 |
city_state => 'my_city_state_for_test_2', |
43 |
city_state => 'my_city_state_for_test_2', |
44 |
city_zipcode => 'my_city_zipcode_for_test_2', |
44 |
city_zipcode => 'my_zipcode_4_test_2', |
45 |
city_country => 'my_city_country_for_test_2', |
45 |
city_country => 'my_city_country_for_test_2', |
46 |
})->store; |
46 |
})->store; |
47 |
|
47 |
|
48 |
- |
|
|