Sha256: 7fa1ca0991912725ee4f52391d33949fd79e93d45e4f99871f5796fd621a46c8

Contents?: true

Size: 960 Bytes

Versions: 25

Compression:

Stored size: 960 Bytes

Contents

require 'spec_helper'

describe 'expect_json regex' do
  it 'should test against regex' do
    mock_get('simple_get')
    get '/simple_get'
    expect_json(name: regex('^A'))
  end

  it 'should raise an error if regex does not match' do
    mock_get('simple_get')
    get '/simple_get'
    expect { expect_json(name: regex('^B')) }.to raise_error(ExpectationNotMetError)
  end

  it 'should allow regex(Regexp) to be tested against a path' do
    mock_get('simple_nested_path')
    get '/simple_nested_path'
    expect_json('address.city', regex('^R'))
  end

  it 'should allow testing regex against numbers directly' do
    mock_get('simple_nested_path')
    get '/simple_nested_path'
    expect_json('address.coordinates.lattitude', regex('^3'))
  end

  it 'should allow testing regex against numbers in the hash' do
    mock_get('simple_nested_path')
    get '/simple_nested_path'
    expect_json('address.coordinates', lattitude: regex('^3'))
  end
end

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
airborne-0.3.7 spec/airborne/expectations/expect_json_regex_spec.rb
airborne-0.3.6 spec/airborne/expectations/expect_json_regex_spec.rb
airborne-0.3.5 spec/airborne/expectations/expect_json_regex_spec.rb
hops-airborne-0.2.17 spec/airborne/expectations/expect_json_regex_spec.rb
airborne-0.3.4 spec/airborne/expectations/expect_json_regex_spec.rb
airborne-0.3.3 spec/airborne/expectations/expect_json_regex_spec.rb
airborne-0.3.2 spec/airborne/expectations/expect_json_regex_spec.rb
airborne-0.3.1 spec/airborne/expectations/expect_json_regex_spec.rb
airborne-0.3.0 spec/airborne/expectations/expect_json_regex_spec.rb
hops-airborne-0.2.16 spec/airborne/expectations/expect_json_regex_spec.rb
hops-airborne-0.2.15 spec/airborne/expectations/expect_json_regex_spec.rb
airborne-0.2.13 spec/airborne/expectations/expect_json_regex_spec.rb
airborne-0.2.12 spec/airborne/expectations/expect_json_regex_spec.rb
airborne-0.2.11 spec/airborne/expectations/expect_json_regex_spec.rb
airborne-0.2.10 spec/airborne/expectations/expect_json_regex_spec.rb
airborne-0.2.9 spec/airborne/expectations/expect_json_regex_spec.rb
airborne-0.2.8 spec/airborne/expectations/expect_json_regex_spec.rb
airborne-0.2.7 spec/airborne/expectations/expect_json_regex_spec.rb
airborne-0.2.6 spec/airborne/expectations/expect_json_regex_spec.rb
airborne-0.2.5 spec/airborne/expectations/expect_json_regex_spec.rb