Skip to content
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

twty: update test #139458

Merged
merged 1 commit into from
Aug 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Formula/twty.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ def install
# twty requires PIN code from stdin and putting nothing to stdin to make authentication failed
require "pty"
PTY.spawn(bin/"twty") do |r, w, _pid|
assert_match "Open this URL and enter PIN.", r.gets
assert_match "https://api.twitter.com/oauth/authenticate?oauth_token=", r.gets
output = r.gets
assert_match "cannot request temporary credentials: OAuth server status 401", output
assert_match "{\"errors\":[{\"code\":32,\"message\":\"Could not authenticate you.\"}]}", output
w.puts
sleep 1 # Wait for twty exiting
end
Expand Down