Open
Conversation
…eated classes Channel, User and Workspace. Added Initialize method in Channel and wrote a corresponding test.
slack.rbWhat We're Looking For
|
CheezItMan
reviewed
Mar 31, 2019
| end | ||
|
|
||
| def channel_details | ||
| super.push("topic", "member_count") |
There was a problem hiding this comment.
Clever, except that the Recipient class doesn't have a channel_details method. This method should be named details.
| return response | ||
| end | ||
|
|
||
| def send_message(channel, text) |
| end | ||
|
|
||
| def details | ||
| ["name", "slack_id"] |
There was a problem hiding this comment.
This method just returns an array with the strings "name" and "slack_id" in it... This isn't useful data. I would suggest:
def details
return "name: #{name}\nID: #{slack_id}"
end| end | ||
|
|
||
| def select_user(name_or_id) | ||
| users.each do |user| |
There was a problem hiding this comment.
You can use users.find here to simplify it.
| return @selection | ||
| end | ||
|
|
||
| def select_channel(name_or_id) |
There was a problem hiding this comment.
Do you notice how this and select_user are almost identical... that's a good sign you can dry it up with a helper method.
| @@ -0,0 +1,14 @@ | |||
| require_relative "test_helper" | |||
|
|
|||
| user = Slack::User.list | ||
|
|
||
| expect(user).must_be_kind_of(Array) | ||
| # check at index that its an instance of user |
There was a problem hiding this comment.
Just need to verify that all elements are instances of User.
| end | ||
|
|
||
| describe "Show details method" do | ||
| it "returns details" do |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
slack.rb
Congratulations! You're submitting your assignment!
You and your partner should collaborate on the answers to these questions.
Comprehension Questions
self.getmethod to access data from the API and we're using oursend_messagemethods to post messages to Slack.