def sometest(self): lcc.check_that("foo", 1, lcc.equal_to(1))
def test_3_3(self): lcc.check_that("foo", 1, lcc.equal_to(1))
def test_1(self): lcc.check_that("somevalue", "foo", lcc.equal_to("bar"))
def test_1_3(self): lcc.check_that("foo", 3, lcc.equal_to(2))
def test_2_3(self): lcc.check_that("foo", 2, lcc.equal_to(2))
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")
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>")
def sometest(self): lcc.check_that("val", 1, lcc.equal_to(2))
def fixt(): yield lcc.check_that("val", 1, lcc.equal_to(2))
def teardown_suite(self): lcc.check_that("val", 1, lcc.equal_to(2))