-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Deprecate answers model #11308
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deprecate answers model #11308
Changes from all commits
c80faa1
8a735e1
a13079c
0538ae1
3778cb5
414dc03
2f6e6a6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class DropAnswers < ActiveRecord::Migration[5.2] | ||
def change | ||
drop_table :answers | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yay! |
||
end | ||
end |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ def setup | |
|
||
get :home | ||
assert_response :success | ||
assert_select "title", Sanitize.clean('🎈') + (" Public Lab: #{title}") | ||
assert_select "title", Sanitize.clean('🎈') + (" Public Lab: #{title}") # Test failing here | ||
anirudhprabhakaran3 marked this conversation as resolved.
Show resolved
Hide resolved
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oops just need to remove this comment! |
||
end | ||
|
||
test 'home should redirect to dashboard if logged in' do | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -484,7 +484,7 @@ def teardown | |
|
||
assert_response :success | ||
assert_template :index | ||
assert_select "title", Sanitize.clean('🎈') + (" Public Lab: Popular wiki pages") | ||
assert_select "title", Sanitize.clean('🎈') + (" Public Lab: Popular wiki pages") # Test failing here | ||
anirudhprabhakaran3 marked this conversation as resolved.
Show resolved
Hide resolved
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here too! |
||
end | ||
|
||
test 'should display well liked wiki pages' do | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah i see in the final diff nothing has changed. Thank you, just checking! Merging!