Sha256: 4c622b0b5ef58549492cc9f3a51c350f54d18f5d25c0ceb29623413015c43637

Contents?: true

Size: 412 Bytes

Versions: 4

Compression:

Stored size: 412 Bytes

Contents

require 'bundler'
Bundler.setup

gem 'minitest'
require 'representable'
require 'test/unit'
require 'minitest/spec'
require 'minitest/autorun'
require 'test_xml/mini_test'
require 'mocha'

class Album
  attr_accessor :songs, :best_song
  def initialize(*songs)
    @songs      = songs
    @best_song  = songs.last
  end
end

class Song
  attr_accessor :name
  def initialize(name=nil)
    @name = name
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
representable-1.0.1 test/test_helper.rb
representable-1.0.0 test/test_helper.rb
representable-0.13.1 test/test_helper.rb
representable-0.13.0 test/test_helper.rb