Sha256: 3faf736dfdb245a00fc06d601f1d54701744e3a7b5fd7f468c0a5117e3c85e09
Contents?: true
Size: 1.61 KB
Versions: 54
Compression:
Stored size: 1.61 KB
Contents
# encoding: utf-8 require 'spec_helper' require 'tbpgr_utils' describe Numeric do context :to_digit_html_table do cases = [ { case_no: 1, case_title: '1-3 case', from: 1, to: 3, expected: <<-EOS <table> <tr> <th>10digit</th> <th>2digit</th> <th>8digit</th> <th>16digit</th> </tr> <tr> <td>1</td> <td>00000001</td> <td>1</td> <td>0001</td> </tr> <tr> <td>2</td> <td>00000010</td> <td>2</td> <td>0002</td> </tr> <tr> <td>3</td> <td>00000011</td> <td>3</td> <td>0003</td> </tr> </table> EOS }, { case_no: 2, case_title: '255-256 case', from: 255, to: 256, expected: <<-EOS <table> <tr> <th>10digit</th> <th>2digit</th> <th>8digit</th> <th>16digit</th> </tr> <tr> <td>255</td> <td>0000000011111111</td> <td>377</td> <td>00ff</td> </tr> <tr> <td>256</td> <td>0000000100000000</td> <td>400</td> <td>0100</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_digit_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
54 entries across 54 versions & 1 rubygems