forked from yt-project/yt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nathan Goldbaum
committed
Aug 28, 2018
1 parent
f0c92d2
commit 3ec7ec5
Showing
3 changed files
with
30 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import nose | ||
|
||
from yt.config import ytcfg | ||
from yt.testing import fake_random_ds | ||
|
||
def setup_func(): | ||
ytcfg["yt", "__withintesting"] = "True" | ||
|
||
@nose.with_setup(setup_func) | ||
def test_glue_data_object(): | ||
ds = fake_random_ds(16) | ||
ad = ds.all_data() | ||
ad.to_glue([('gas', 'density')]) |