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
### Keybase proof | |
I hereby claim: | |
* I am azbshiri on github. | |
* I am azbshiri (https://keybase.io/azbshiri) on keybase. | |
* I have a public key whose fingerprint is 5576 2694 3AF1 4E42 5673 F3CD 3D40 840A 6E62 F2DE | |
To claim this, I am signing this object: |
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
{ | |
"type": "object", | |
"required": ["user"], | |
"properties": { | |
"user" : { | |
"type" : "object", | |
"required" : [ | |
"id", | |
"token", | |
"token_expired_at", |
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
describe "Sign in" do | |
context "anonymous user" do | |
it "returns data in the specified format" do | |
sign_in_as_anonymous | |
expect(response).to match_response_schema("users/anonymous_detail") | |
end | |
end | |
end |
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
require "http/server" | |
class Users::Me | |
include HTTP::Handler | |
def call(context) | |
return call_next(context) unless match?(context.request) | |
STDOUT.puts "getting user info..." | |
STDOUT.puts "done!" |
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
package main | |
import ( | |
"testing" | |
"github.com/stretchr/testify/assert" | |
) | |
func TestMain(m *testing.M) { | |
// before spec | |
err := m.Run() |
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
require "byebug" | |
class CharFieldKlass | |
def initialize(*args) | |
end | |
def valid? | |
end | |
end |
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
RSpec::Matchers.define :have_many do |expected| | |
match do |actual| | |
if actual.respond_to?(:reflect_on_association) | |
actual.reflect_on_association(expected)&.macro == :has_many | |
else | |
actual.class.reflect_on_association(expected)&.macro == :has_many | |
end | |
end | |
end |
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
require "rails_helper" | |
RSpec.describe User, type: :model do | |
it { should have_many(:books) } | |
it "has many books" do | |
expect(User).to have_many(:books) | |
end | |
end |
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
require "rails_helper" | |
RSpec.describe User, type: :model do | |
it { should have_many(:books) } | |
it "has many books" do | |
expect(User).to have_many(:books) | |
end | |
end |
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
unlet! skip_defaults_vim | |
source $VIMRUNTIME/defaults.vim | |
filetype indent on | |
set backspace=indent,eol,start | |
set number | |
set nobackup | |
set noswapfile | |
autocmd! |