Skip to content
Closed
Show file tree
Hide file tree
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
49 changes: 49 additions & 0 deletions fixtures/small/prism/expression_calls_actual.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
[
CommonFields::OBVIOUSLY,
CommonFields::THESE,
CommonFields::ARE,
CommonFields::FAKE_RESOURCE.with_wombo(true).with_combo(true).with_explosion(true)
].map do |field|
# Swap things out, to make sure.
override || field
end

{
having: "Having a Coke With You",
with: you
}.freeze

{
having: "Having a Coke With You",
with: you
} # by Mark Leidner
.freeze

{
having: "Having a Coke With You",
with: you
}.# by Mark Leidner
freeze

{
having: "Having a Coke With You",
with: you
}
# by Mark Leidner
.freeze

{
something: "wicked"
}.this_way {
comes
# spookyyyy
}

{musical: "wicked"}
# The original broadway cast recording!
.sing("Defying Gravity")


# TODO(@reese): Fix this failing test case
# {musical: "wicked"}
# .sing("Defying Gravity") # The original broadway cast recording!
48 changes: 48 additions & 0 deletions fixtures/small/prism/expression_calls_expected.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
[
CommonFields::OBVIOUSLY,
CommonFields::THESE,
CommonFields::ARE,
CommonFields::FAKE_RESOURCE.with_wombo(true).with_combo(true).with_explosion(true)
].map do |field|
# Swap things out, to make sure.
override || field
end

{
having: "Having a Coke With You",
with: you
}.freeze

{
having: "Having a Coke With You",
with: you
# by Mark Leidner
}.freeze

{
having: "Having a Coke With You",
with: you
# by Mark Leidner
}.freeze

{
having: "Having a Coke With You",
with: you
}
# by Mark Leidner
.freeze

{
something: "wicked"
}.this_way {
comes
# spookyyyy
}

{musical: "wicked"}
# The original broadway cast recording!
.sing("Defying Gravity")

# TODO(@reese): Fix this failing test case
# {musical: "wicked"}
# .sing("Defying Gravity") # The original broadway cast recording!
Loading