Skip to content
This repository has been archived by the owner on May 21, 2019. It is now read-only.

Access control against exporting issue #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
gem 'icalendar', '>= 2.0.0'

group :test do
gem 'factory_girl'
end
10 changes: 10 additions & 0 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
# Load the Redmine helper
require File.expand_path(File.dirname(__FILE__) + '/../../../test/test_helper')

Dir[AddToCalendar.root.join('test/factories/*.rb')].each { |f| require f }

module AddToCalendar
module TestHelper
include FactoryGirl::Syntax::Methods
end
end

Redmine::IntegrationTest.send :include, AddToCalendar::TestHelper