Example #1
0
def test_RenderBuildStep_write_to_file():
    step = RenderBuildStep()
    out_fl = StringIO()
    step.write_to_file( "foobar", out_fl )
    assert_equal( out_fl.getvalue(), "foobar" )