Ejemplo n.º 1
0
 def test_vertical(self):
     histogram = Histogram(data, bins, rnge)
     assert_equal(
         "0.80",
         histogram.vertical(height, character).splitlines()[-1][:4])
Ejemplo n.º 2
0
 def test_horizontal(self):
     histogram = Histogram(data, bins, rnge)
     assert_equal("1.00\n", histogram.horizontal(height, character)[-5:])
Ejemplo n.º 3
0
 def test_vertical(self):
     histogram = Histogram(data, bins, rnge)
     assert_equal("0.80", histogram.vertical(height, character).splitlines()[-1][:4])
Ejemplo n.º 4
0
 def test___init__(self):
     histogram = Histogram(data, bins, rnge)
     raise SkipTest  # TODO: implement your test here
Ejemplo n.º 5
0
 def test_horizontal(self):
     histogram = Histogram(data, bins, rnge)
     assert_equal("1.00\n", histogram.horizontal(height, character)[-5:])