-
-
Save mikew/239170 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# shoulda validation that a partial has been rendered by a view | |
class Test::Unit::TestCase | |
def self.should_render_partial(partial) | |
should "render partial #{partial.inspect}" do | |
# add the underscore. it's expected anyways | |
assert_template :partial => partial.to_s.sub(/\/(\w+)$/, '/_\1') | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment