=begin #Minty API #Minty API =end require 'spec_helper' require 'json' require 'date' # Unit tests for MintyApi::RedirectUrl describe MintyApi::RedirectUrl do let(:instance) { MintyApi::RedirectUrl.new } describe 'test an instance of RedirectUrl' do it 'should create an instance of RedirectUrl' do expect(instance).to be_instance_of(MintyApi::RedirectUrl) end end describe 'test attribute "redirect_url"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end