Ejemplo n.º 1
0
 def should_have_300_of_width(self, topic):
     expect(topic['width']).to_equal(300)
Ejemplo n.º 2
0
 def when_passed_a_complete_url_should_return_the_url_without_modification(
         self, topic):
     expect(topic).to_equal('http://127.0.0.1:8085/complete_url/')
Ejemplo n.º 3
0
 def should_be_equal_to_the_host_in_out_context(self, topic):
     expect(topic).to_equal('127.0.0.1')
Ejemplo n.º 4
0
 def should_be_runtime_error(self, topic):
     expect(topic).to_be_an_error_like(RuntimeError)
Ejemplo n.º 5
0
 def should_return_the_same_path(self, topic):
     expect(topic).to_equal('/')
Ejemplo n.º 6
0
 def should_be_pyvowsconsole(self, klass):
     expect(klass['name']).to_equal('tests.bla')
Ejemplo n.º 7
0
 def should_contain_lines_uncovered(self, klass):
     expect(klass['uncovered_lines']).to_equal(['2', '3'])
Ejemplo n.º 8
0
 def should_have_center_halign(self, topic):
     expect(topic['halign']).to_equal('center')
Ejemplo n.º 9
0
 def should_have_middle_valign(self, topic):
     expect(topic['valign']).to_equal('middle')
Ejemplo n.º 10
0
 def should_have_flip_horizontal_flag(self, topic):
     expect(topic['horizontal_flip']).to_be_true()
Ejemplo n.º 11
0
 def should_have_flip_vertical_flag(self, topic):
     expect(topic['vertical_flip']).to_be_true()
Ejemplo n.º 12
0
 def should_not_have_fitin_flag(self, topic):
     expect(topic['fit_in']).to_be_false()
Ejemplo n.º 13
0
 def should_have_smart_flag(self, topic):
     expect(topic['smart']).to_be_true()
Ejemplo n.º 14
0
 def should_have_200_of_height(self, topic):
     expect(topic['height']).to_equal(300)
Ejemplo n.º 15
0
 def should_be_overall_99(self, result):
     expect(result['overall']).to_equal(0.99)
Ejemplo n.º 16
0
 def should_have_crop_left_of_10(self, topic):
     expect(topic['crop']['left']).to_equal(10)
Ejemplo n.º 17
0
 def should_be_pyvows_cli(self, klass):
     expect(klass['name']).to_equal('pyvows.cli')
Ejemplo n.º 18
0
 def should_have_crop_top_of_11(self, topic):
     expect(topic['crop']['top']).to_equal(11)
Ejemplo n.º 19
0
 def should_contain_linehate(self, klass):
     expect(klass['line_rate']).to_equal(0.88)
Ejemplo n.º 20
0
 def should_be_false(self, topic):
     expect(topic).to_be_false()
Ejemplo n.º 21
0
 def should_be_an_error(self, topic):
     expect(topic).to_be_an_error()
Ejemplo n.º 22
0
 def should_be_true(self, topic):
     expect(topic).to_be_true()
Ejemplo n.º 23
0
 def should_have_nice_error_message(self, topic):
     expect(topic).to_have_an_error_message_of(
         'The settings_path argument is required.')
Ejemplo n.º 24
0
 def should_be_an_instance_of_class(self, inst):
     expect(inst).to_be_instance_of(VowsDefaultReporter)
Ejemplo n.º 25
0
 def should_return_an_error(self, topic):
     expect(topic).to_be_an_error_like(ValueError)
Ejemplo n.º 26
0
 def should_return_a_dict(self, result):
     expect(result).to_be_instance_of(dict)
Ejemplo n.º 27
0
 def the_get_url_should_return_a_well_formed_url(self, topic):
     expect(topic).to_equal('http://127.0.0.1:8085/')
Ejemplo n.º 28
0
 def should_contain_only_one_package(self, result):
     expect(len(result['classes'])).to_equal(2)
Ejemplo n.º 29
0
 def should_be_equal_to_the_port_in_out_context(self, topic):
     expect(topic).to_equal(8085)
Ejemplo n.º 30
0
 def should_not_be_an_empty_dict(self, topic):
     expect(topic).not_to_be_empty()