Sha256: f594ab3dd49ae736a67966129339cba2f9e3ded452eae7c0a24428715c59e31c

Contents?: true

Size: 404 Bytes

Versions: 2

Compression:

Stored size: 404 Bytes

Contents

require 'spec_helper'


describe 'Parsing, Unit', :unit_test => true do

  let(:nodule) { CukeModeler::Parsing }


  describe 'unique behavior' do

    it 'can parse text' do
      expect(nodule).to respond_to(:parse_text)
    end

    it 'takes the text that is to be parsed and an optional file name' do
      expect(nodule.method(:parse_text).arity).to eq(-2)
    end

  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cuke_modeler-1.0.1 spec/unit/parsing_unit_spec.rb
cuke_modeler-1.0.0 spec/unit/parsing_unit_spec.rb