Skip to content

Instantly share code, notes, and snippets.

@elihart
Created November 20, 2019 17:30
Show Gist options
  • Save elihart/e3fa08c1c42de0b1e79fff08c4fd3887 to your computer and use it in GitHub Desktop.
Save elihart/e3fa08c1c42de0b1e79fff08c4fd3887 to your computer and use it in GitHub Desktop.
MvRx Mock Variant DSL Example
override fun provideMocks() = mockSingleViewModel(
viewModelReference = DadJokeFragment::viewModel,
defaultState = mockDadJokeState
) {
state("Loading") {
copy(jokes = Loading())
}
state("Empty results") {
copy(jokes = Success(jokes.copy(results = emptyList())))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment