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