Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
14daf2e2
Commit
14daf2e2
authored
Aug 29, 2012
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add `include_module` matcher
parent
2c95074a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
spec/support/matchers.rb
spec/support/matchers.rb
+10
-0
No files found.
spec/support/matchers.rb
View file @
14daf2e2
...
@@ -28,6 +28,16 @@ RSpec::Matchers.define :be_404_for do |user|
...
@@ -28,6 +28,16 @@ RSpec::Matchers.define :be_404_for do |user|
end
end
end
end
RSpec
::
Matchers
.
define
:include_module
do
|
expected
|
match
do
described_class
.
included_modules
.
include?
(
expected
)
end
failure_message_for_should
do
"expected
#{
described_class
}
to include the
#{
expected
}
module"
end
end
module
UrlAccess
module
UrlAccess
def
url_allowed?
(
user
,
url
)
def
url_allowed?
(
user
,
url
)
emulate_user
(
user
)
emulate_user
(
user
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment