Skip to content

Commit

Permalink
Adding unit tests for backreaction module
Browse files Browse the repository at this point in the history
  • Loading branch information
stammler committed Jun 16, 2023
1 parent 3a20cbe commit 42f5bfb
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions tests/dynamics/test_backreaction.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from dustpy import Simulation
from dustpylib.dynamics.backreaction import setup_backreaction
import pytest


def test_backreaction():
s = Simulation()
s.initialize()
setup_backreaction(s)
s.update


def test_backreaction_vertical():
s = Simulation()
s.initialize()
setup_backreaction(s, vertical_setup=True)
s.update

0 comments on commit 42f5bfb

Please sign in to comment.