Sha256: 885dcfa0adb5ebc5df0011d2c1684c601992f56337c6611acb34b4722d228cea
Contents?: true
Size: 573 Bytes
Versions: 2
Compression:
Stored size: 573 Bytes
Contents
require_relative 'spec_helper' require 'futoase/profile' describe Futoase::Profile do let(:profile) { Futoase::Profile.new } it "should be get my name" do expect(profile.name).to eq("Keiji Matsuzaki") end it "should be get my age" do expect(profile.age).to eq(31) end it "should be get my site" do expect(profile.site).to eq("http://futoase.github.io/") end it "should be get my firstname" do expect(profile.firstname).to eq("Keiji") end it "should be get my lastname" do expect(profile.lastname).to eq("Matsuzaki") end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
futoase-0.0.3 | spec/futoase_spec.rb |
futoase-0.0.2 | spec/futoase_spec.rb |