9 lines
249 B
Ruby
9 lines
249 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe JobOpportunity, type: :model do
|
|
it "returns remoteness in words for remoteness" do
|
|
jo = JobOpportunity.new
|
|
jo.remoteness = "on_premise"
|
|
expect(jo.remoteness_in_words).to eq("In Office")
|
|
end
|
|
end
|