예제 #1
0
 def sometest(self):
     lcc.check_that("foo", 1, lcc.equal_to(1))
예제 #2
0
 def test_3_3(self):
     lcc.check_that("foo", 1, lcc.equal_to(1))
예제 #3
0
 def test_1(self):
     lcc.check_that("somevalue", "foo", lcc.equal_to("bar"))
예제 #4
0
 def test_1_3(self):
     lcc.check_that("foo", 3, lcc.equal_to(2))
예제 #5
0
 def test_2_3(self):
     lcc.check_that("foo", 2, lcc.equal_to(2))
예제 #6
0
 def sometest(self):
     lcc.set_step(u"éééààà")
     lcc.check_that(u"éééààà", 1, lcc.equal_to(1))
     lcc.log_info(u"éééààà")
     lcc.save_attachment_content("A" * 1024, u"somefileààà", u"éééààà")
     lcc.log_url("http://example.com", "example")
예제 #7
0
 def html_escaping(self):
     lcc.set_step("<h1>step description</h1>")
     lcc.check_that("<h1>value</h1>", "<h1>actual</h1>", equal_to("<h1>expected</h1>"))
     lcc.log_info("<h1>some log</h1>")
     lcc.save_attachment_content("content", "filename", "<h1>attachment</h1>")
예제 #8
0
 def sometest(self):
     lcc.check_that("val", 1, lcc.equal_to(2))
예제 #9
0
 def fixt():
     yield
     lcc.check_that("val", 1, lcc.equal_to(2))
예제 #10
0
 def teardown_suite(self):
     lcc.check_that("val", 1, lcc.equal_to(2))