Sha256: 793dd7a09501c5085671bf79349df388dbab940fd1820e71fb75f8880d10f16a
Contents?: true
Size: 1.86 KB
Versions: 3
Compression:
Stored size: 1.86 KB
Contents
# encoding: UTF-8 require 'spec_helper' describe "show-models" do it "should print a list of models" do output = mock_pry('show-models', 'exit-all') ar_models = <<MODELS Beer id: integer name: string type: string rating: integer ibu: integer abv: integer belongs_to :hacker Hacker id: integer social_ability: integer has_many :beers has_many :pokemons Pokemon id: integer name: string caught: binary species: string abilities: string belongs_to :hacker has_many :beers (through :hacker) MODELS mongoid_models = <<MODELS Artist _id: BSON::ObjectId name: String embeds_one :beer (validate) embeds_many :instruments (validate) Instrument _id: BSON::ObjectId name: String embedded_in :artist MODELS internal_models = <<MODELS ActiveRecord::InternalMetadata key: string value: string created_at: datetime updated_at: datetime MODELS expected_output = ar_models if defined?(Mongoid) output.gsub!(/^ *_type: String\n/, '') # mongoid 3.0 and 3.1 differ on this output.gsub!(/Moped::BSON/, 'BSON') # mongoid 3 and 4 differ on this expected_output += mongoid_models end if Rails.version.to_s =~ /^5/ expected_output = internal_models + expected_output end output.must_equal expected_output end it "should highlight the given phrase with --grep" do begin Pry.color = true output = mock_pry('show-models --grep rating', 'exit-all') output.must_include "Beer" output.must_include "\e[7mrating\e[27m" output.wont_include "Pokemon" if defined?(Mongoid) output.wont_include "Artist" end ensure Pry.color = false end end if defined?(Mongoid) it "should also filter for mongoid" do output = mock_pry('show-models --grep beer', 'exit-all') output.must_include 'Artist' end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
pry-rails-0.3.8 | spec/show_models_spec.rb |
pry-rails-0.3.7 | spec/show_models_spec.rb |
pry-rails-0.3.6 | spec/show_models_spec.rb |