Sha256: c865a3450dfa4f76973a27013171840f52bc4933d7582cd622b84bf4d0ae9a08
Contents?: true
Size: 669 Bytes
Versions: 7
Compression:
Stored size: 669 Bytes
Contents
# frozen_string_literal: true # Copyright (c) 2008-2013 Michael Dvorkin and contributors. # # Fat Free CRM is freely distributable under the terms of MIT license. # See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php #------------------------------------------------------------------------------ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') describe TasksHelper do describe "responding with generated links" do before do @task = create(:task) end it "should render link to uncomplete of a task" do expect(link_to_task_uncomplete(@task, nil)).to include(t(:task_uncomplete)) end end end
Version data entries
7 entries across 7 versions & 1 rubygems