It is sometimes useful to verify that your work on Developer edition hasn't introduced a dependency on any features restricted to Enterprise edition.
You can do this using the sys.dm_db_persisted_sku_features
system view, like so:
SELECT * FROM sys.dm_db_persisted_sku_features
Against the database itself.
This will list the features being used, if any.