Sha256: a695ef0c8463a41cda4fb98c6af3259b384ea596dc5f33c009dccafdd4c8cd6b

Contents?: true

Size: 1.23 KB

Versions: 1

Compression:

Stored size: 1.23 KB

Contents

# encoding: utf-8
require 'spec_helper'
require 'markdown/ol'

describe MarkdownString do
  context :ol do
    cases = [
      {
        case_no: 1,
        case_title: 'array case',
        input: %w(a b c),
        expected: <<-EOS
1. a
1. b
1. c
        EOS
      },
      {
        case_no: 2,
        case_title: 'not list case',
        input: 'hoge',
        expected: 'hoge'
      },
      {
        case_no: 3,
        case_title: 'empty list case',
        input: [],
        expected: ''
      },
      {
        case_no: 4,
        case_title: 'each element nil case',
        input: [nil, nil, nil],
        expected: "1. \n1. \n1. \n"
      }
    ]

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

          # -- given --
          # nothing

          # -- when --
          actual = MarkdownString.ol c[:input]

          # -- 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/markdown/ol_spec.rb