-
Notifications
You must be signed in to change notification settings - Fork 6
Add dummy Hanami application for integration testing. #7
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
Conversation
| @@ -0,0 +1,12 @@ | |||
| # Require this file for unit tests | |||
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.
Missing frozen string literal comment.
| @@ -0,0 +1,4 @@ | |||
| require 'spec_helper' | |||
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.
Missing frozen string literal comment.
| @@ -0,0 +1,2 @@ | |||
| class UserRepository < Hanami::Repository | |||
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.
Missing frozen string literal comment.
| @@ -0,0 +1,2 @@ | |||
| class TweetRepository < Hanami::Repository | |||
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.
Missing frozen string literal comment.
| @@ -0,0 +1,2 @@ | |||
| class User < Hanami::Entity | |||
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.
Missing frozen string literal comment.
| @@ -0,0 +1,5 @@ | |||
| module Api::Views::Tweets | |||
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.
Missing frozen string literal comment.
Use nested module/class definitions instead of compact style.
| @@ -0,0 +1,5 @@ | |||
| module Api::Views::Tweets | |||
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.
Missing frozen string literal comment.
Use nested module/class definitions instead of compact style.
| @@ -0,0 +1,7 @@ | |||
| module Api | |||
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.
Missing frozen string literal comment.
| @@ -0,0 +1,5 @@ | |||
| class SerializableUser < JSONAPI::Serializable::Resource | |||
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.
Missing frozen string literal comment.
| @@ -0,0 +1,7 @@ | |||
| class SerializableTweet < JSONAPI::Serializable::Resource | |||
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.
Missing frozen string literal comment.
No description provided.