Sha256: e548791b6e09c3c6f8819e484a45f30b2aec3968edb5a9f9445e00e289a95733

Contents?: true

Size: 1.35 KB

Versions: 53

Compression:

Stored size: 1.35 KB

Contents

# encoding: utf-8
require 'spec_helper'
require 'tbpgr_utils'

describe Numeric do
  context :to_hex_html_table do
    cases = [
      {
        case_no: 1,
        case_title: '1-3 case',
        from: 1,
        to: 3,
        expected: <<-EOS
<table>
  <tr>
    <th>10digit</th>
    <th>16digit</th>
  </tr>
  <tr>
    <td>1</td>
    <td>0001</td>
  </tr>
  <tr>
    <td>2</td>
    <td>0002</td>
  </tr>
  <tr>
    <td>3</td>
    <td>0003</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>16digit</th>
  </tr>
  <tr>
    <td>65535</td>
    <td>0000ffff</td>
  </tr>
  <tr>
    <td>65536</td>
    <td>00010000</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_hex_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

53 entries across 53 versions & 1 rubygems

Version Path
tbpgr_utils-0.0.150 spec/open_classes/numeric/to_hex_html_table_spec.rb
tbpgr_utils-0.0.149 spec/open_classes/numeric/to_hex_html_table_spec.rb
tbpgr_utils-0.0.148 spec/open_classes/numeric/to_hex_html_table_spec.rb
tbpgr_utils-0.0.147 spec/open_classes/numeric/to_hex_html_table_spec.rb
tbpgr_utils-0.0.146 spec/open_classes/numeric/to_hex_html_table_spec.rb
tbpgr_utils-0.0.145 spec/open_classes/numeric/to_hex_html_table_spec.rb
tbpgr_utils-0.0.144 spec/open_classes/numeric/to_hex_html_table_spec.rb
tbpgr_utils-0.0.143 spec/open_classes/numeric/to_hex_html_table_spec.rb
tbpgr_utils-0.0.142 spec/open_classes/numeric/to_hex_html_table_spec.rb
tbpgr_utils-0.0.141 spec/open_classes/numeric/to_hex_html_table_spec.rb
tbpgr_utils-0.0.140 spec/open_classes/numeric/to_hex_html_table_spec.rb
tbpgr_utils-0.0.139 spec/open_classes/numeric/to_hex_html_table_spec.rb
tbpgr_utils-0.0.138 spec/open_classes/numeric/to_hex_html_table_spec.rb
tbpgr_utils-0.0.137 spec/open_classes/numeric/to_hex_html_table_spec.rb
tbpgr_utils-0.0.136 spec/open_classes/numeric/to_hex_html_table_spec.rb
tbpgr_utils-0.0.135 spec/open_classes/numeric/to_hex_html_table_spec.rb
tbpgr_utils-0.0.134 spec/open_classes/numeric/to_hex_html_table_spec.rb
tbpgr_utils-0.0.133 spec/open_classes/numeric/to_hex_html_table_spec.rb
tbpgr_utils-0.0.132 spec/open_classes/numeric/to_hex_html_table_spec.rb
tbpgr_utils-0.0.131 spec/open_classes/numeric/to_hex_html_table_spec.rb