create([ 'lyrics' => "foo\rbar\nbaz\r\nqux", ]); // When I retrieve its lyrics $lyrics = $song->lyrics; // Then I see the new line characters replaced by
self::assertEquals('foo
bar
baz
qux', $lyrics); } /** @test */ public function amazon_s3_parameters_can_be_retrieved_from_s3_hosted_songs() { // Given a song hosted on S3 /** @var Song $song */ $song = factory(Song::class)->create(['path' => 's3://foo/bar']); // When I check its S3 parameters $params = $song->s3_params; // Then I receive the correct parameters self::assertEquals(['bucket' => 'foo', 'key' => 'bar'], $params); } }