Sha256: af4a035d53eb4acf52a22c1e48eb186e52ff9bc177015dfd3151a33c2022c4d1

Contents?: true

Size: 1.67 KB

Versions: 103

Compression:

Stored size: 1.67 KB

Contents

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

describe String do
  context :say do
    cases = [
      {
        case_no: 1,
        case_title: 'default case',
        input: 'hoge',
        expected: "'hoge'"
      },
      {
        case_no: 2,
        case_title: 'quote case',
        input: 'hoge',
        option: :quote,
        expected: "'hoge'"
      },
      {
        case_no: 3,
        case_title: 'dquote case',
        input: 'hoge',
        option: :dquote,
        expected: '"hoge"'
      },
      {
        case_no: 4,
        case_title: 'bracket case',
        input: 'hoge',
        option: :bracket,
        expected: '[hoge]'
      },
      {
        case_no: 5,
        case_title: 'hyphen case',
        input: 'hoge',
        option: :hyphen,
        expected: '-hoge-'
      },
      {
        case_no: 6,
        case_title: 'error case',
        input: 'hoge',
        option: :invalid,
        expected: '-hoge-',
        expect_error: true,
      },
    ]

    cases.each do |c|
      it "|case_no=#{c[:case_no]}|case_title=#{c[:case_title]}" do
        begin
          case_before c

          # -- given --
          # nothing

          # -- when --
          if c[:expect_error]
            lambda { c[:input].say(c[:option]) }.should raise_error(StandardError)
            next
          end
          actual = c[:option] ? c[:input].say(c[:option]) : c[:input].say

          # -- 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

103 entries across 103 versions & 1 rubygems

Version Path
tbpgr_utils-0.0.130 spec/open_classes/string/say_spec.rb
tbpgr_utils-0.0.129 spec/open_classes/string/say_spec.rb
tbpgr_utils-0.0.128 spec/open_classes/string/say_spec.rb
tbpgr_utils-0.0.127 spec/open_classes/string/say_spec.rb
tbpgr_utils-0.0.126 spec/open_classes/string/say_spec.rb
tbpgr_utils-0.0.125 spec/open_classes/string/say_spec.rb
tbpgr_utils-0.0.124 spec/open_classes/string/say_spec.rb
tbpgr_utils-0.0.123 spec/open_classes/string/say_spec.rb
tbpgr_utils-0.0.122 spec/open_classes/string/say_spec.rb
tbpgr_utils-0.0.121 spec/open_classes/string/say_spec.rb
tbpgr_utils-0.0.120 spec/open_classes/string/say_spec.rb
tbpgr_utils-0.0.119 spec/open_classes/string/say_spec.rb
tbpgr_utils-0.0.118 spec/open_classes/string/say_spec.rb
tbpgr_utils-0.0.117 spec/open_classes/string/say_spec.rb
tbpgr_utils-0.0.116 spec/open_classes/string/say_spec.rb
tbpgr_utils-0.0.115 spec/open_classes/string/say_spec.rb
tbpgr_utils-0.0.114 spec/open_classes/string/say_spec.rb
tbpgr_utils-0.0.113 spec/open_classes/string/say_spec.rb
tbpgr_utils-0.0.112 spec/open_classes/string/say_spec.rb
tbpgr_utils-0.0.111 spec/open_classes/string/say_spec.rb