Sha256: 836a2df71b4ef5e98198f676737de72ecbd4b794b95ca65c35d53180eb61fc07

Contents?: true

Size: 549 Bytes

Versions: 11

Compression:

Stored size: 549 Bytes

Contents

require 'test_helper'

describe API::Player do
  subject { API::Player }

  it 'should respond to get_all' do
    subject.must_respond_to :get_all
  end

  it 'should respond to get_quarterbacks' do
    subject.must_respond_to :get_quarterbacks
  end

  it 'should respond to get_runningbacks' do
    subject.must_respond_to :get_runningbacks
  end

  it 'should respond to get_wide_receivers' do
    subject.must_respond_to :get_wide_receivers
  end

  it 'should respond to get_tight_ends' do
    subject.must_respond_to :get_tight_ends
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
nfl_data-0.0.14 test/nfl_data/api/player_test.rb
nfl_data-0.0.13 test/nfl_data/api/player_test.rb
nfl_data-0.0.12 test/nfl_data/api/player_test.rb
nfl_data-0.0.11 test/nfl_data/api/player_test.rb
nfl_data-0.0.10 test/nfl_data/api/player_test.rb
nfl_data-0.0.9 test/nfl_data/api/player_test.rb
nfl_data-0.0.8 test/nfl_data/api/player_test.rb
nfl_data-0.0.7 test/nfl_data/api/player_test.rb
nfl_data-0.0.6 test/nfl_data/api/player_test.rb
nfl_data-0.0.5 test/nfl_data/api/player_test.rb
nfl_data-0.0.4 test/nfl_data/api/player_test.rb