Sha256: 1d50a2fb4a848b58a80ef83902eaa2f216f6c2ada666edaa7d5eda15fb5ed0c4
Contents?: true
Size: 1.34 KB
Versions: 1
Compression:
Stored size: 1.34 KB
Contents
# encoding: utf-8 require 'spec_helper' require 'tbpgr_utils' describe Numeric do context :to_oct_html_table do cases = [ { case_no: 1, case_title: '1-3 case', from: 1, to: 3, expected: <<-EOS <table> <tr> <th>10digit</th> <th>8digit</th> </tr> <tr> <td>1</td> <td>1</td> </tr> <tr> <td>2</td> <td>2</td> </tr> <tr> <td>3</td> <td>3</td> </tr> </table> EOS }, { case_no: 2, case_title: '65535-65536 case', from: 65_535, to: 65_536, expected: <<-EOS <table> <tr> <th>10digit</th> <th>8digit</th> </tr> <tr> <td>65535</td> <td>177777</td> </tr> <tr> <td>65536</td> <td>200000</td> </tr> </table> EOS } ] cases.each do |c| it "|case_no=#{c[:case_no]}|case_title=#{c[:case_title]}" do begin case_before c # -- given -- # nothing # -- when -- actual = Numeric.to_oct_html_table(c[:from], c[:to]) # -- then -- expect(actual).to eq(c[:expected]) ensure case_after c end end def case_before(c) # implement each case before end def case_after(c) # implement each case after end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tbpgr_utils-0.0.151 | spec/open_classes/numeric/to_oct_html_table_spec.rb |